'Declaration
<ConditionalAttribute("DEBUG")> Public Overloads Shared Sub LogDebug( _ ByVal eventId As EventId, _ ByVal message As String, _ ByVal ParamArray args() As Object _ )
'Usage
Dim eventId As EventId Dim message As String Dim args() As Object Utils.LogDebug(eventId, message, args)
[Conditional("DEBUG")] public static void LogDebug( EventId eventId, string message, params object[] args )
[Conditional("DEBUG")] public: static void LogDebug( EventId eventId, String^ message, ... array<Object^>^ args )
Parameters
- eventId
- The event id associated with the log.
- message
- Format string of the log message in message template format. Example:
"User {User} logged in from {Address}"
- args
- An object array that contains zero or more objects to format.